home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / earkit / socket / miami3 / miamisdk / netinclude / netinet / icmp_var.h next >
C/C++ Source or Header  |  1998-05-24  |  328b  |  20 lines

  1. #ifndef _NETINET_ICMP_VAR_H_
  2. #define _NETINET_ICMP_VAR_H_
  3.  
  4. #ifndef _SYS_SYSCTL_H_
  5. #include <sys/sysctl.h>
  6. #endif
  7.  
  8. /*
  9.  * Names for ICMP sysctl objects
  10.  */
  11. #define    ICMPCTL_MASKREPL    1    /* allow replies to netmask requests */
  12. #define ICMPCTL_MAXID        2
  13.  
  14. #define ICMPCTL_NAMES { \
  15.     { 0, 0 }, \
  16.     { "maskrepl", CTLTYPE_INT }, \
  17. }
  18.  
  19. #endif
  20.